home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-01 | 498 b | 26 lines | [TEXT/CWIE] |
-
- int count_array[52];
- int count_array2[52];
- int nums[10][6];
-
- struct lottonum {
- int set[6];
- int odds, evens;
- int reds, whites, blues;
- int average;
- int sum_of_diffs;
- struct lottonum *prev; // someday i'll make a database outta this
- struct lottonum *next;
- } *array[10];
-
-
- struct lottonum2 {
- int set2[6];
- int use;
- int odds2, evens2;
- int reds2, whites2, blues2;
- int average2;
- int sum_of_diffs2;
- struct lottonum2 *prev2; // someday i'll make a database outta this
- struct lottonum2 *next2;
- } *array2[10];